-
Notifications
You must be signed in to change notification settings - Fork 23
[chore] Implement is_auto_partitioned method in table.rs #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
dd36fca to
8dcd531
Compare
|
@luoyuxia cc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR implements the is_auto_partitioned method in table.rs which was previously marked with a todo!(). The implementation introduces a new AutoPartitionStrategy struct to parse and manage auto-partition configuration from table properties, and uses it to determine whether a table has auto-partitioning enabled.
Changes:
- Added
AutoPartitionStrategystruct with methods to parse auto-partition configuration from properties - Implemented
is_auto_partitionedmethod that checks both partitioning and auto-partition enablement - Added comprehensive test coverage for all scenarios
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
luoyuxia
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@beryllw Thanks for the pr. Left minor comments.
luoyuxia
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@beryllw Thanks. LGTM!
|
@beryllw Please rebase main branch |
Purpose
Linked issue: close #45
Brief change log
Tests
API and Format
Documentation